home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
lingua
/
newkwd.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-04-08
|
2KB
|
64 lines
unit Newkwd;
(***************************************************************************)
(* *)
(* ##### ##### ##### ##### ##### #### ###### ####### *)
(* # # # # # # # # # # *)
(* # # # # ### # #### # # ### # *)
(* # # # # # # # # # # # *)
(* ##### ##### ##### ##### ##### #### # # *)
(* *)
(***************************************************************************)
{
(c) 1995 Cogisoft
This component is FREE distribution. Use it for your own utilization.
But you can't sell an application, using this component, without the
authorization of Cogisoft.
COGISOFT,H⌠tel de MΘziΦres,19 rue Michel Le Comte,75003 PARIS,FRANCE
Tel:(1)40-65-04-04, FAX:(1)42-72-27-87
NO CODING !!!
Jerome VOLLET, CompuServe : 100560,3342
}
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
StdCtrls, ExtCtrls;
type
TfmNewKeyword = class(TForm)
OKBtn: TBitBtn;
CancelBtn: TBitBtn;
HelpBtn: TBitBtn;
Bevel1: TBevel;
EdKeyword: TEdit;
EdTranslation: TEdit;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
EdLanguage: TEdit;
procedure OKBtnClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.DFM}
uses Dialogs;
procedure TfmNewKeyword.OKBtnClick(Sender: TObject);
begin
if EdTranslation.Text = '' then
begin
ShowMessage( 'Translation MUST be filled !!!' );
ModalResult := mrNone;
EdTranslation.SetFocus;
end;
end;
end.